home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.2 Development Libraries / SGI IRIX 6.2 Development Libraries.iso / dist / gl_dev.idb / usr / share / src / OpenGL / tools / toogl / search.h.z / search.h
Encoding:
C/C++ Source or Header  |  1996-03-15  |  265 b   |  21 lines

  1.  
  2.  
  3. const NALPH = 128;
  4.  
  5. const MAXPATTERN = 32;
  6.  
  7.  
  8.  
  9. class Search {
  10.     public:
  11.     Search() ;
  12.     ~Search() {} ;
  13.     void add(const char *s) ;
  14.     void print_table() ;
  15.     int check(const char *s) ;
  16.     private:
  17.     unsigned int table[NALPH];
  18.     unsigned int cstate;
  19.     unsigned int lim;
  20. };
  21.